home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / news / readers / skim-0.8 / skim-0 / skim-0.8.4 / MemAlloc.h < prev    next >
C/C++ Source or Header  |  1996-02-18  |  1KB  |  38 lines

  1. /*
  2.  * NAME
  3.  *   MemAlloc.h
  4.  * COPYRIGHT
  5.  *   MemAlloc - Memory allocation routines.
  6.  *   Copyright (C) 1996  Rene W.J. Pijlman
  7.  *
  8.  *   This program is free software; you can redistribute it and/or modify
  9.  *   it under the terms of the GNU General Public License as published by
  10.  *   the Free Software Foundation; either version 2 of the License, or
  11.  *   (at your option) any later version.
  12.  *
  13.  *   This program is distributed in the hope that it will be useful,
  14.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *   GNU General Public License for more details.
  17.  *
  18.  *   You should have received a copy of the GNU General Public License
  19.  *   along with this program; if not, write to the Free Software
  20.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  * VERSION
  22.  *   $Header: /home/rene/sys/CVS_MasterSourceRepository/skim/MemAlloc.h,v 1.3 1996/02/11 17:52:30 rene Exp $
  23.  *   Distributed with Skim version 0.8.4.
  24.  */
  25.  
  26. #ifndef _MEM_ALLOC_H_
  27. #define _MEM_ALLOC_H_
  28.  
  29. #include "Types.h"
  30. #include <stdlib.h>
  31.  
  32. void * MemAlloc( size_t );
  33. void * MemRealloc( void * , size_t );
  34. void MemFree( void * );
  35. char * MemNewString( const char * );
  36.  
  37. #endif /* _MEM_ALLOC_H_ */
  38.